home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Commands / Protocols / Selecting.h < prev    next >
Text File  |  2000-06-23  |  208b  |  17 lines

  1. // Selecting.h
  2.  
  3. #ifndef Selecting_h
  4. #define Selecting_h
  5.  
  6. class Selecting
  7.   {
  8.     protected:
  9.         ~Selecting()                        {}
  10.  
  11.     public:
  12.         virtual bool CanSelectAll() const = 0;
  13.         virtual void SelectAll() = 0;
  14.   };
  15.  
  16. #endif
  17.